home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / tcb100t.arc / LABLE.C < prev    next >
Text File  |  1988-03-05  |  1KB  |  49 lines

  1. main()
  2. {
  3.    /*                     label.c
  4.     *
  5.     *  This program will print a set of disk labels on standard mailing
  6.     *  label forms using the IBM graphics printers.  The labels are the
  7.     *  same ones issued with the distribution disks.  If you pass on a
  8.     *  copy of the library please do it right and use proper labels.
  9.     *  Thanks - Dave Miller
  10.     *
  11.     *  Copyright (c) 1987 by David A. Miller but placed in the public
  12.     *  domain for the sole purpose of reprinting Unicorn Library Labels
  13.     *  by library users.
  14.     *
  15.     */
  16.  
  17.    lprintf("\n");
  18.    prtwidon();
  19.    prtdubon();
  20.    prtempon();
  21.    lprintf("   C Tool Box    \n");
  22.    prtempof();
  23.    prtwidoff();
  24.    prtcomon();
  25.    lprintf(" A graphics and general purpose library for TURBO C using\n");
  26.    lprintf(" IBM and Tandy 1000 computers.  Disk 1,  Version 4.0\n");
  27.    lprintf("                   Unicorn Software\n");
  28.    lprintf("           Copyright (c) 1987 David A. Miller\n");
  29.    prtcomof();
  30.  
  31.  
  32.    lprintf("\n");
  33.    prtwidon();
  34.    prtdubon();
  35.    prtempon();
  36.    lprintf("   C Tool Box    \n");
  37.    prtempof();
  38.    prtwidoff();
  39.    prtcomon();
  40.    lprintf(" A graphics and general purpose library for TURBO C using\n");
  41.    lprintf(" IBM and Tandy 1000 computers.  Disk 2,  Version 4.0\n");
  42.    lprintf("                   Unicorn Software\n");
  43.    lprintf("           Copyright (c) 1987 David A. Miller\n");
  44.    prtcomof();
  45.  
  46.  
  47.  
  48. }
  49.